home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2000 February / DPPCPRO0200.ISO / ps10.dxr / Scripts_28_Nav New.ls < prev    next >
Encoding:
Text File  |  1999-10-26  |  468 b   |  21 lines

  1. property rolloverName
  2.  
  3. on mouseEnter me
  4.   set the member of sprite the currentSpriteNum to member(rolloverName & " roll")
  5. end
  6.  
  7. on mouseLeave me
  8.   set the member of sprite the currentSpriteNum to member(rolloverName)
  9. end
  10.  
  11. on mouseUp me
  12.   puppetSound(1, 0)
  13.   go(rolloverName)
  14. end
  15.  
  16. on getPropertyDescriptionList
  17.   description = [:]
  18.   addProp(description, #rolloverName, [#default: EMPTY, #format: #string, #comment: "Rollover/Destination Name"])
  19.   return description
  20. end
  21.